cody - HTMLify profile

cody
4270 Files
634151 Views
Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/119 - Random Svg Generator/js
// CREDIT: https://github.com/boringdesigners/boring-avatars/blob/master/src/lib/utilities.js
function hashCode(name) {
let hash = 0;
for (let i = 0; i < name.length; i++) {
let character = name.charCodeAt(i);
hash = (hash << 5) - hash + character;
hash = hash & hash; // Convert to 32bit integer
}
function hashCode(name) {
let hash = 0;
for (let i = 0; i < name.length; i++) {
let character = name.charCodeAt(i);
hash = (hash << 5) - hash + character;
hash = hash & hash; // Convert to 32bit integer
}